Conditions | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
8 | |||
9 | /** |
||
10 | * Get the list of official genres for movies. |
||
11 | * @return { Promise<GenresResponse> } |
||
12 | * @see https://developers.themoviedb.org/3/genres/get-movie-list |
||
13 | */ |
||
14 | public async movie(): Promise<GenresResponse> { |
||
15 | return this.sendGetRequest(`genre/movie/list`); |
||
16 | } |
||
28 |